From 4007449a58822fee531b8f6ec99a966d8fab3f54 Mon Sep 17 00:00:00 2001 From: Rob Bradford Date: Mon, 9 Jan 2012 15:07:08 +0000 Subject: [PATCH] application: Correct the fallback definition for gtk_application_end_session The function definition used a pointer to the enum value rather than the enum itself. This broke the build on platforms that don't have an implmentation of these functions. --- gtk/gtkapplication.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gtk/gtkapplication.c b/gtk/gtkapplication.c index 4331314c4e..80d1a6a1b0 100644 --- a/gtk/gtkapplication.c +++ b/gtk/gtkapplication.c @@ -1667,7 +1667,7 @@ gtk_application_is_inhibited (GtkApplication *application, gboolean gtk_application_end_session (GtkApplication *application, - GtkApplicationEndStyle *style, + GtkApplicationEndStyle style, gboolean request_confirmation) { return FALSE; -- 2.30.2